home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1998 January / PC Answers Issue 49 Cover CD January 1998.iso / Apps / Director / DATA.Z / Scriptable Authoring.dir / Scripts_14_Navigation Window Handlers.ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  392 b   |  17 lines

  1. global gNavScriptAuthorWindow
  2.  
  3. on GoMenu
  4.   PuppetCostumes(0)
  5.   PuppetFloatAndBand(0)
  6.   PuppetScoreCreate(0)
  7.   go("Menu")
  8. end
  9.  
  10. on SetMIAWText sectionName
  11.   set statusString to the text of member string(sectionName && "status")
  12.   set commentString to the text of member string(sectionName && "comments")
  13.   tell gNavScriptAuthorWindow
  14.     DisplayText(statusString, commentString)
  15.   end tell
  16. end
  17.